home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2001 December / pcwk12201b.iso / Wersje pelne i specjalne / Winamp 2.77 i 3.0beta / wa3install_beta1.exe / Skins / Default.wal / Scripts / cfgint.m < prev    next >
Encoding:
Text File  |  2001-10-04  |  423 b   |  21 lines

  1. #include "../../../lib/std.mi"
  2.  
  3. Global Text txt;
  4. Global Edit editor;
  5. Global CfgGroup cgroup;
  6.  
  7. System.onScriptLoaded() {
  8.   cgroup = getScriptGroup();
  9.   txt = cgroup.getObject("cfg.txt");
  10.   editor = cgroup.getObject("cfg.edit");
  11. }
  12.  
  13. editor.onEnter() {
  14.   cgroup.cfgSetInt(stringToInteger(getText()));
  15. }
  16.  
  17. cgroup.onCfgChanged() {
  18.   txt.setText(cfgGetName());
  19.   editor.setText(integerToString(cfgGetInt()));
  20. }
  21.